home *** CD-ROM | disk | FTP | other *** search
/ Clickx 75 / Clickx 75.iso / software / expressionweb / expressionwebv3 / ExpressionWeb_en.exe / Setup / WeConen.cab / xweb.config.tem.web.config.en < prev    next >
Encoding:
Extensible Markup Language  |  2009-06-09  |  1.5 KB  |  42 lines

  1. ∩╗┐<?xml version="1.0"?>
  2.  
  3. <!-- 
  4.     A full list of settings and comments can be found in 
  5.     machine.config.comments usually located in 
  6.     \Windows\Microsoft.Net\Framework\v2.x\Config 
  7. -->
  8. <configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
  9.     <appSettings/>
  10.     <connectionStrings/>
  11.     <system.web>
  12.  
  13.         <!-- 
  14.             Set compilation debug="true" to insert debugging 
  15.             symbols into the compiled page. Because this 
  16.             affects performance, set this value to true only 
  17.             during development.
  18.         -->
  19.         <compilation debug="false"/>
  20.  
  21.         <!--
  22.             The <authentication> section enables configuration 
  23.             of the security authentication mode used by 
  24.             ASP.NET to identify an incoming user. 
  25.         -->
  26.         <authentication mode="Windows"/>
  27.  
  28.         <!--
  29.             The <customErrors> section enables configuration 
  30.             of what to do if/when an unhandled error occurs 
  31.             during the execution of a request. Specifically, 
  32.             it enables developers to configure html error pages 
  33.             to be displayed in place of a error stack trace.
  34.  
  35.         <customErrors mode="RemoteOnly" defaultRedirect="GenericErrorPage.htm">
  36.             <error statusCode="403" redirect="NoAccess.htm"/>
  37.             <error statusCode="404" redirect="FileNotFound.htm"/>
  38.         </customErrors>
  39.         -->
  40.     </system.web>
  41. </configuration>
  42.